home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet bezpieczenstwa
/
mini Pentoo LiveCD 2006.1
/
mpentoo-2006.1.iso
/
livecd.squashfs
/
etc
/
init.d
/
local
< prev
next >
Wrap
Text File
|
2006-04-25
|
620b
|
35 lines
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
after *
}
start() {
ebegin "Starting local"
# Add any misc programs that should be started
# to /etc/conf.d/local.start
if [[ -e /etc/conf.d/local.start ]] ; then
source /etc/conf.d/local.start
fi
eend $? "Failed to start local"
}
stop() {
ebegin "Stopping local"
# Add any misc programs that should be stopped
# to /etc/conf.d/local.stop
if [[ -e /etc/conf.d/local.stop ]] ; then
source /etc/conf.d/local.stop
fi
eend $? "Failed to stop local"
}
# vim:ts=4